@charset "UTF-8";

/*-------------------------------------------
ブログリスト
-------------------------------------------*/
.blog-list {
  margin-bottom: 6em;
}
.blog-list .post-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.blog-list .post-list li .img {
  margin-bottom: 10px;
  width: 100%;
  height: 200px;
}
.post-list .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.blog-list .post-list li time {
  font-size: 12px;
}
.blog-list .post-list li .title {
  font-size: 14px;
  margin-top: 10px;
}
.blog-list .pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-list .pagenation li {
  margin: 0 10px;
}

/*-------------------------------------------
ページ番号
-------------------------------------------*/
.pagination {
  display: flex;
  gap: 0.5rem;
  margin: 0 auto;
  width: fit-content;
}
.pagination a {
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #dedede;
  text-decoration: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.pagination i {
  line-height: 40px;
}
.pagination .active a {
  background-color: #80c5d6;
  color: white;
  transition: all 0.6s ease;
}
.pagination a:hover {
  background-color: #b7e0e9;
  color: white;
}
.pagination .disabled a {
  pointer-events: none;
  color: #ccc;
  transition: color 0.3s ease;
}
.pagination .disabled a:hover {
  background-color: initial;
  color: #ccc;
}
.pagination .bracket p {
  color: #757575;
  border-radius: 50%;
  border: 1px solid #dedede;
  text-decoration: none;
  width: 40px;
  height: 40px;
  line-height: 35px;
  text-align: center;
  margin: 0 10px;
}

/*-------------------------------------------
タグ
-------------------------------------------*/
.tag-heading {
  margin: 60px 0;
}
.nothing {
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
.nothing p {
  margin: 100px 0;
}
.nothing .btn {
  margin:  0 auto;
}

/*-------------------------------------------
レスポンシブ
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .blog-list {
    margin-bottom: 60px;
  }
  .blog-list .post-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .btn {
    margin: 0 auto 60px;
  }
}